home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / bison.arc / MAKEFILE < prev    next >
Text File  |  1988-07-28  |  985b  |  38 lines

  1.  
  2. #.c.o:
  3. #    xcc -c -O $<
  4.  
  5. OBJECTS = LR0.o allocate.o closure.o conflicts.o derives.o files.o    \
  6.       getargs.o gram.o lalr.o                    \
  7.       lex.o main.o nullable.o output.o print.o reader.o symtab.o    \
  8.       warshall.o glue.o
  9.  
  10. start: bison.ttp
  11.     echo Done
  12.  
  13. clean:
  14.     rm -f *.o core bison.ttp
  15.  
  16. install: bison.ttp
  17.     install bison $(BINDIR)
  18.     cp $(PFILE) $(PFILE1) $(PARSERDIR)
  19.  
  20. bison.ttp: $(OBJECTS)
  21.     cc -s -o bison.ttp @bison.lnk
  22.  
  23. files.o: files.c files.h new.h gram.h
  24. LR0.o: machine.h new.h gram.h state.h
  25. closure.o: machine.h new.h gram.h
  26. conflicts.o: machine.h new.h files.h gram.h state.h
  27. derives.o: new.h types.h gram.h
  28. getargs.o: files.h
  29. lalr.o: machine.h types.h state.h new.h gram.h
  30. lex.o: files.h symtab.h lex.h
  31. main.o: machine.h
  32. nullable.o: types.h gram.h new.h
  33. output.o: machine.h new.h files.h gram.h state.h
  34. print.o: machine.h new.h files.h gram.h state.h
  35. reader.o: files.h new.h symtab.h lex.h gram.h
  36. symtab.o: new.h symtab.h gram.h
  37. warshall.o: machine.h
  38.